home *** CD-ROM | disk | FTP | other *** search
/ Windows Game Programming for Dummies (2nd Edition) / WinGamProgFD.iso / mac / DirectX SDK / DXSDK / include / DShowIDL / strmif.idl < prev    next >
Text File  |  2001-10-08  |  2KB  |  57 lines

  1. //------------------------------------------------------------------------------
  2. // File: StrmIf.idl
  3. //
  4. // Desc: ActiveMovie interface definitions.
  5. //
  6. // Copyright (c) 1992-2001, Microsoft Corporation.  All rights reserved.
  7. //------------------------------------------------------------------------------
  8.  
  9. //
  10. // Temporarily disable the /W4 compiler warning C4201, which will be 
  11. // reported by all apps which include streams.h or dshow.h, which both
  12. // include the strmif.h generated by this IDL file.
  13. //
  14. cpp_quote("//+-------------------------------------------------------------------------")
  15. cpp_quote("//")
  16. cpp_quote("//  Copyright (C) Microsoft Corporation, 1999-2001.")
  17. cpp_quote("//")
  18. cpp_quote("//--------------------------------------------------------------------------")
  19. cpp_quote("// Disable /W4 compiler warning C4201: nameless struct/union")
  20. cpp_quote("#pragma warning(disable:4201)  // Disable C4201: nameless struct/union")
  21. cpp_quote("  ")   // Blank space
  22.  
  23. import "unknwn.idl";
  24. import "objidl.idl";    // for IPersist (IFilter's root)
  25.  
  26. #include "devenum.idl"
  27.  
  28. // Core interfaces
  29. #include "axcore.idl"
  30.  
  31. // Extended, ActiveMovie-only interfaces
  32. #include "axextend.idl"
  33.  
  34. #if (WINVER < 0x501)
  35.         #include "IAMovie.idl"
  36. #endif
  37.  
  38. // Application interfaces for DVD
  39. #include "dvdif.idl"
  40.  
  41. // Dynamic graph stuff
  42. #include "dyngraph.idl"
  43.  
  44. // This include is only valid when building for Windows XP
  45. #if (WINVER >= 0x501)
  46.  
  47.     // Video Mixing Renderer
  48.     #include "VMRender.idl"
  49.  
  50. #endif
  51.  
  52. //
  53. // Restore the previous setting for C4201 compiler warning
  54. //
  55. cpp_quote("// Restore the previous setting for C4201 compiler warning")
  56. cpp_quote("#pragma warning(default:4201)")
  57.